home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turnbull China Bikeride
/
Turnbull China Bikeride - Disc 1.iso
/
DEMON
/
RISCOS2
/
TCP_131S.ARC
/
h
/
cmdparse
< prev
next >
Wrap
Text File
|
1994-01-02
|
589b
|
18 lines
#include "Terminal.h"
#define NARG 10 /* Max number of args to commands */
struct cmds {
char *name; /* Name of command */
int (*func)(); /* Function to execute command */
int argcmin; /* Minimum number of args */
char *argc_errmsg; /* Message to print if insufficient args */
char *exec_errmsg; /* Message to print if function fails */
};
#ifndef NULLCHAR
#define NULLCHAR (char *)0
#endif
int cmdparse(struct cmds *, char *, Terminal *);
int subcmd(struct cmds *, int, char **);